home *** CD-ROM | disk | FTP | other *** search
/ Fantasy Adventure Pack / Fantasy Adventure Pack.iso / spell101 / unpack.bat < prev    next >
DOS Batch File  |  1990-09-24  |  771b  |  28 lines

  1. @echo off
  2. echo off
  3. cls
  4. echo UNPACKing SOUNDFX1.EXE and SOUNDFX2.EXE
  5. if NOT exist soundfx1.exe goto err1
  6. soundfx1
  7. if NOT exist vulture2.rs goto err2
  8. erase soundfx1.exe
  9. if NOT exist soundfx2.exe goto err3
  10. soundfx2
  11. if NOT exist sigh1.rs goto err4
  12. erase soundfx2.exe
  13. echo UNPACKing completed successfully!
  14. echo Installation of "Spellcasting 101: Sorcerers Get all the Girls" complete...
  15. goto exit
  16. :err1
  17. echo SOUNDFX1.EXE is missing from this directory!
  18. goto exit
  19. :err2
  20. echo SOUNDFX1.EXE was not completed... does your hard drive have room?
  21. goto exit
  22. :err3
  23. echo SOUNDFX2.EXE is missing from this directory!
  24. goto exit
  25. :err4
  26. echo SOUNDFX2.EXE was not completed... does your hard drive have room?
  27. :exit
  28.